home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / lib / strlen.c < prev    next >
C/C++ Source or Header  |  1998-10-01  |  139b  |  14 lines

  1. #include <string.h>
  2.  
  3. /* Return length of string */
  4.  
  5. BYTE strlen(const char *s)
  6. {
  7.   UBYTE i;
  8.  
  9.   i = 0;
  10.   while(*s++)
  11.     i++;
  12.   return i;
  13. }
  14.